home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet 2002 February / Practical Internet February 2002.iso / pc / Software / SiteBuilding / HomeSite_Installer.exe / data1.cab / Extensions / Includes / wmAddToList.wizml < prev    next >
Encoding:
Text File  |  2001-10-11  |  543 b   |  15 lines

  1. <WIZIF 0><!-- Copyright  (c) 1997-2001 Macromedia, Inc. All Rights Reserved. Consult Software License Agreement for more details.  Version 1.0 - 2001-05-30 --></WIZIF>
  2. <WIZIF 0><!--
  3.     List building function: adds element to a list with a given separatator
  4.     varList:    List to be added to (may be empty)
  5.     varAdd:        Element to be added
  6.     varSep:        Separator between elements
  7. --></WIZIF>
  8. <WIZIF varAdd NEQ ''>
  9.     <WIZIF varList EQ ''>
  10.         <WIZSET varList = varAdd>
  11.     <WIZELSE>
  12.         <WIZSET varList = varList & varSep & varAdd>
  13.     </WIZIF>
  14. </WIZIF>
  15.